home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_mssql.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  106 lines

  1. #TRUSTED 810db6fc9b8d07559c5156b2530f8ed7a63b80aa9cc0280f26d3f0f40158814acdb2916925f24dcd13d84078311b9af59a3878400375eb3b706daab4c7460341e3aae673b905383767a35885a522370cc4be92a8e194aa4f12fb3b3379868319f44e27b9fcdb3b013e070665bce37eaed328ceb48ad360850ffd231eb81bf11a42bd9a6ea80d29b636df76c9b5773fab17bed93ee97bdcb57432f7b687bee7292d9a50e8d4d992aef071a705d7351c68935f862017e1b455e10283501993dbdceabea10ae92e47d745613bf1b012e5c148551e99729d0919e978a76786d16a350914ed9c8ef3f8dc4e89b8b79c698f88edc398c1ac70f994d7f601586c36b9b78be3fa14eaf9241b8b27eab610f3cfa4e70d618507ab94f42a82c59e3406d761d8005bb19ab5d3e4ed3953a569517d92981d62c060a25668dd3c9452f50e761d6ddd5f455def1fef23325dd469d5466972c7279e8c5c4b7aac844621f888ae31388fc17382f775723fc190664c1cbd7a72e32a1fba201fb2f991139869a812bd36d3319319cf5239c870f236f5b7dc42b21ddb79e51b2a5b6971c5d3012a956543bf4ea78d8b66b7dc8038e8085ef0395966b477399a34aab4e7aab13f72110fb7bd962fc5e0b88f8eb1da8d2f71bba4c6a6415eb52ee40781ab98bc7e84573dcb87730cb71645cd9392c5c049865aed4f6aae349e8df0724dbcf5777e8bb674
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra")) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15878);
  15.  script_version ("1.2");
  16.  name["english"] = "Hydra: MS SQL";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find MS SQL passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force MS SQL authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/logins_file", "Secret/hydra/passwords_file");
  35.  script_require_ports("Services/mssql", 1433);
  36.  script_dependencies("hydra_options.nasl", "find_service.nes", "mssqlserver_detect.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. throrough = get_kb_item("global_settings/thorough_tests");
  43. if ("yes" >!< throrough) exit(0);
  44. logins = get_kb_item("Secret/hydra/logins_file");
  45. passwd = get_kb_item("Secret/hydra/passwords_file");
  46. if (logins == NULL || passwd == NULL) exit(0);
  47.  
  48. port = get_kb_item("Services/mssql");
  49. if (! port) port = 1433;
  50. if (! get_port_state(port)) exit(0);
  51.  
  52. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  53. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  54.  
  55. empty = get_kb_item("/tmp/hydra/empty_password");
  56. login_pass = get_kb_item("/tmp/hydra/login_password");
  57. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  58. tr = get_kb_item("Transports/TCP/"+port);
  59.  
  60. i = 0;
  61. argv[i++] = "hydra";
  62. argv[i++] = "-s"; argv[i++] = port;
  63. argv[i++] = "-L"; argv[i++] = logins;
  64. argv[i++] = "-P"; argv[i++] = passwd;
  65. s = "";
  66. if (empty) s = "n";
  67. if (login_pass) s+= "s";
  68. if (s)
  69. {
  70.   argv[i++] = "-e"; argv[i++] = s;
  71. }
  72. if (exit_asap) argv[i++] = "-f";
  73. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  74.  
  75. if (timeout > 0)
  76. {
  77.   argv[i++] = "-w";
  78.   argv[i++] = timeout;
  79. }
  80. if (tasks > 0)
  81. {
  82.   argv[i++] = "-t";
  83.   argv[i++] = tasks;
  84. }
  85.  
  86. argv[i++] = get_host_ip();
  87. argv[i++] = "mssql";
  88.  
  89. report = "";
  90. results = pread(cmd: "hydra", argv: argv, nice: 5);
  91. foreach line (split(results))
  92. {
  93.   v = eregmatch(string: line, pattern: 'host:.*login: *(.*) password: *(.*)$');
  94.   if (! isnull(v))
  95.   {
  96.     l = chomp(v[1]);
  97.     p = chomp(v[2]);
  98.     report = strcat(report, 'login: ', l, '\tpassword: ', p, '\n');
  99.     set_kb_item(name: 'Hydra/mssql/'+port, value: l + '\t' + p);
  100.   }
  101. }
  102.  
  103. if (report)
  104.   security_hole(port: port, 
  105.     data: 'Hydra was able to break the following MS SQL accounts:\n' + report);
  106.